89d0175cc4e4a375c3946fa64825b8d352bf85b3,java/java-tests/testSrc/com/intellij/codeInspection/InspectionProfileTest.java,InspectionProfileTest,countInitializedTools,#Profile#,251
Before Change
for (ScopeToolState tool : tools) {
InspectionProfileEntry entry = tool.getTool();
assertTrue(entry instanceof InspectionToolWrapper);
if (entry.isInitialized()) i++;
}
return i;
}
After Change
for (ScopeToolState tool : tools) {
InspectionProfileEntry entry = tool.getTool();
assertTrue(entry instanceof InspectionToolWrapper);
if (entry.isInitialized() && ((InspectionToolWrapper)entry).hasXmlMapping()) {
i++;
}
}